home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / v cisle / PHP / PHP.exe / EasyPHP-2.0b1-setup.exe / {app} / safe / php-safe.ini < prev   
Encoding:
INI File  |  2006-11-03  |  48.0 KB  |  1,342 lines

  1. ; IMPORTANT
  2. ; ${path} is used to specify EasyPHP installation path
  3.  
  4. [PHP]
  5.  
  6. ;;;;;;;;;;;;;;;;;;;
  7. ; About php.ini   ;
  8. ;;;;;;;;;;;;;;;;;;;
  9. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  10. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  11. ; working directory, in the path designated by the environment variable
  12. ; PHPRC, and in the path that was defined in compile time (in that order).
  13. ; Under Windows, the compile-time path is the Windows directory.  The
  14. ; path in which the php.ini file is looked for can be overridden using
  15. ; the -c argument in command line mode.
  16. ;
  17. ; The syntax of the file is extremely simple.  Whitespace and Lines
  18. ; beginning with a semicolon are silently ignored (as you probably guessed).
  19. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  20. ; they might mean something in the future.
  21. ;
  22. ; Directives are specified using the following syntax:
  23. ; directive = value
  24. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  25. ;
  26. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  27. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  28. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  29. ;
  30. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  31. ; |        bitwise OR
  32. ; &        bitwise AND
  33. ; ~        bitwise NOT
  34. ; !        boolean NOT
  35. ;
  36. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  37. ; They can be turned off using the values 0, Off, False or No.
  38. ;
  39. ; An empty string can be denoted by simply not writing anything after the equal
  40. ; sign, or by using the None keyword:
  41. ;
  42. ;  foo =         ; sets foo to an empty string
  43. ;  foo = none    ; sets foo to an empty string
  44. ;  foo = "none"  ; sets foo to the string 'none'
  45. ;
  46. ; If you use constants in your value, and these constants belong to a
  47. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  48. ; you may only use these constants *after* the line that loads the extension.
  49. ;
  50. ;;;;;;;;;;;;;;;;;;;
  51. ; About this file ;
  52. ;;;;;;;;;;;;;;;;;;;
  53. ; This is the recommended, PHP 5-style version of the php.ini-dist file.  It
  54. ; sets some non standard settings, that make PHP more efficient, more secure,
  55. ; and encourage cleaner coding.
  56. ;
  57. ; The price is that with these settings, PHP may be incompatible with some
  58. ; applications, and sometimes, more difficult to develop with.  Using this
  59. ; file is warmly recommended for production sites.  As all of the changes from
  60. ; the standard settings are thoroughly documented, you can go over each one,
  61. ; and decide whether you want to use it or not.
  62. ;
  63. ; For general information about the php.ini file, please consult the php.ini-dist
  64. ; file, included in your PHP distribution.
  65. ;
  66. ; This file is different from the php.ini-dist file in the fact that it features
  67. ; different values for several directives, in order to improve performance, while
  68. ; possibly breaking compatibility with the standard out-of-the-box behavior of
  69. ; PHP.  Please make sure you read what's different, and modify your scripts
  70. ; accordingly, if you decide to use this file instead.
  71. ;
  72. ; - register_long_arrays = Off     [Performance]
  73. ;     Disables registration of the older (and deprecated) long predefined array
  74. ;     variables ($HTTP_*_VARS).  Instead, use the superglobals that were
  75. ;     introduced in PHP 4.1.0
  76. ; - display_errors = Off           [Security]
  77. ;     With this directive set to off, errors that occur during the execution of
  78. ;     scripts will no longer be displayed as a part of the script output, and thus,
  79. ;     will no longer be exposed to remote users.  With some errors, the error message
  80. ;     content may expose information about your script, web server, or database
  81. ;     server that may be exploitable for hacking.  Production sites should have this
  82. ;     directive set to off.
  83. ; - log_errors = On                [Security]
  84. ;     This directive complements the above one.  Any errors that occur during the
  85. ;     execution of your script will be logged (typically, to your server's error log,
  86. ;     but can be configured in several ways).  Along with setting display_errors to off,
  87. ;     this setup gives you the ability to fully understand what may have gone wrong,
  88. ;     without exposing any sensitive information to remote users.
  89. ; - output_buffering = 4096        [Performance]
  90. ;     Set a 4KB output buffer.  Enabling output buffering typically results in less
  91. ;     writes, and sometimes less packets sent on the wire, which can often lead to
  92. ;     better performance.  The gain this directive actually yields greatly depends
  93. ;     on which Web server you're working with, and what kind of scripts you're using.
  94. ; - register_argc_argv = Off       [Performance]
  95. ;     Disables registration of the somewhat redundant $argv and $argc global
  96. ;     variables.
  97. ; - magic_quotes_gpc = Off         [Performance]
  98. ;     Input data is no longer escaped with slashes so that it can be sent into
  99. ;     SQL databases without further manipulation.  Instead, you should use the
  100. ;     function addslashes() on each input element you wish to send to a database.
  101. ; - variables_order = "GPCS"       [Performance]
  102. ;     The environment variables are not hashed into the $_ENV.  To access
  103. ;     environment variables, you can use getenv() instead.
  104. ; - error_reporting = E_ALL        [Code Cleanliness, Security(?)]
  105. ;     By default, PHP suppresses errors of type E_NOTICE.  These error messages
  106. ;     are emitted for non-critical errors, but that could be a symptom of a bigger
  107. ;     problem.  Most notably, this will cause error messages about the use
  108. ;     of uninitialized variables to be displayed.
  109. ; - allow_call_time_pass_reference = Off     [Code cleanliness]
  110. ;     It's not possible to decide to force a variable to be passed by reference
  111. ;     when calling a function.  The PHP 4 style to do this is by making the
  112. ;     function require the relevant argument by reference.
  113.  
  114. ;;;;;;;;;;;;;;;;;;;;
  115. ; Language Options ;
  116. ;;;;;;;;;;;;;;;;;;;;
  117.  
  118. ; Enable the PHP scripting language engine under Apache.
  119. engine = On
  120.  
  121. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  122. zend.ze1_compatibility_mode = Off
  123.  
  124. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  125. ; NOTE: Using short tags should be avoided when developing applications or
  126. ; libraries that are meant for redistribution, or deployment on PHP
  127. ; servers which are not under your control, because short tags may not
  128. ; be supported on the target server. For portable, redistributable code,
  129. ; be sure not to use short tags.
  130. short_open_tag = Off
  131.  
  132. ; Allow ASP-style <% %> tags.
  133. asp_tags = Off
  134.  
  135. ; The number of significant digits displayed in floating point numbers.
  136. precision    =  14
  137.  
  138. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  139. y2k_compliance = On
  140.  
  141. ; Output buffering allows you to send header lines (including cookies) even
  142. ; after you send body content, at the price of slowing PHP's output layer a
  143. ; bit.  You can enable output buffering during runtime by calling the output
  144. ; buffering functions.  You can also enable output buffering for all files by
  145. ; setting this directive to On.  If you wish to limit the size of the buffer
  146. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  147. ; a value for this directive (e.g., output_buffering=4096).
  148. output_buffering = 4096
  149.  
  150. ; You can redirect all of the output of your scripts to a function.  For
  151. ; example, if you set output_handler to "mb_output_handler", character
  152. ; encoding will be transparently converted to the specified encoding.
  153. ; Setting any output handler automatically turns on output buffering.
  154. ; Note: People who wrote portable scripts should not depend on this ini
  155. ;       directive. Instead, explicitly set the output handler using ob_start().
  156. ;       Using this ini directive may cause problems unless you know what script
  157. ;       is doing.
  158. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  159. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  160. ; Note: output_handler must be empty if this is set 'On' !!!!
  161. ;       Instead you must use zlib.output_handler.
  162. ;output_handler =
  163.  
  164. ; Transparent output compression using the zlib library
  165. ; Valid values for this option are 'off', 'on', or a specific buffer size
  166. ; to be used for compression (default is 4KB)
  167. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  168. ;       outputs chunks that are few hundreds bytes each as a result of
  169. ;       compression. If you prefer a larger chunk size for better
  170. ;       performance, enable output_buffering in addition.
  171. ; Note: You need to use zlib.output_handler instead of the standard
  172. ;       output_handler, or otherwise the output will be corrupted.
  173. zlib.output_compression = Off
  174. ;zlib.output_compression_level = -1
  175.  
  176. ; You cannot specify additional output handlers if zlib.output_compression
  177. ; is activated here. This setting does the same as output_handler but in
  178. ; a different order.
  179. ;zlib.output_handler =
  180.  
  181. ; Implicit flush tells PHP to tell the output layer to flush itself
  182. ; automatically after every output block.  This is equivalent to calling the
  183. ; PHP function flush() after each and every call to print() or echo() and each
  184. ; and every HTML block.  Turning this option on has serious performance
  185. ; implications and is generally recommended for debugging purposes only.
  186. implicit_flush = Off
  187.  
  188. ; The unserialize callback function will be called (with the undefined class'
  189. ; name as parameter), if the unserializer finds an undefined class
  190. ; which should be instantiated.
  191. ; A warning appears if the specified function is not defined, or if the
  192. ; function doesn't include/implement the missing class.
  193. ; So only set this entry, if you really want to implement such a
  194. ; callback-function.
  195. unserialize_callback_func=
  196.  
  197. ; When floats & doubles are serialized store serialize_precision significant
  198. ; digits after the floating point. The default value ensures that when floats
  199. ; are decoded with unserialize, the data will remain the same.
  200. serialize_precision = 100
  201.  
  202. ; Whether to enable the ability to force arguments to be passed by reference
  203. ; at function call time.  This method is deprecated and is likely to be
  204. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  205. ; specifying which arguments should be passed by reference is in the function
  206. ; declaration.  You're encouraged to try and turn this option Off and make
  207. ; sure your scripts work properly with it in order to ensure they will work
  208. ; with future versions of the language (you will receive a warning each time
  209. ; you use this feature, and the argument will be passed by value instead of by
  210. ; reference).
  211. allow_call_time_pass_reference = Off
  212.  
  213. ;
  214. ; Safe Mode
  215. ;
  216. safe_mode = Off
  217.  
  218. ; By default, Safe Mode does a UID compare check when
  219. ; opening files. If you want to relax this to a GID compare,
  220. ; then turn on safe_mode_gid.
  221. safe_mode_gid = Off
  222.  
  223. ; When safe_mode is on, UID/GID checks are bypassed when
  224. ; including files from this directory and its subdirectories.
  225. ; (directory must also be in include_path or full path must
  226. ; be used when including)
  227. safe_mode_include_dir =
  228.  
  229. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  230. ; will be allowed to be executed via the exec family of functions.
  231. safe_mode_exec_dir =
  232.  
  233. ; Setting certain environment variables may be a potential security breach.
  234. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  235. ; the user may only alter environment variables whose names begin with the
  236. ; prefixes supplied here.  By default, users will only be able to set
  237. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  238. ;
  239. ; Note:  If this directive is empty, PHP will let the user modify ANY
  240. ; environment variable!
  241. safe_mode_allowed_env_vars = PHP_
  242.  
  243. ; This directive contains a comma-delimited list of environment variables that
  244. ; the end user won't be able to change using putenv().  These variables will be
  245. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  246. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  247.  
  248. ; open_basedir, if set, limits all file operations to the defined directory
  249. ; and below.  This directive makes most sense if used in a per-directory
  250. ; or per-virtualhost web server configuration file. This directive is
  251. ; *NOT* affected by whether Safe Mode is turned On or Off.
  252. ;open_basedir =
  253.  
  254. ; This directive allows you to disable certain functions for security reasons.
  255. ; It receives a comma-delimited list of function names. This directive is
  256. ; *NOT* affected by whether Safe Mode is turned On or Off.
  257. disable_functions =
  258.  
  259. ; This directive allows you to disable certain classes for security reasons.
  260. ; It receives a comma-delimited list of class names. This directive is
  261. ; *NOT* affected by whether Safe Mode is turned On or Off.
  262. disable_classes =
  263.  
  264. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  265. ; <span style="color: ???????"> would work.
  266. ;highlight.string  = #DD0000
  267. ;highlight.comment = #FF9900
  268. ;highlight.keyword = #007700
  269. ;highlight.bg      = #FFFFFF
  270. ;highlight.default = #0000BB
  271. ;highlight.html    = #000000
  272.  
  273. ; If enabled, the request will be allowed to complete even if the user aborts
  274. ; the request. Consider enabling it if executing long request, which may end up
  275. ; being interrupted by the user or a browser timing out.
  276. ; ignore_user_abort = On
  277.  
  278. ; Determines the size of the realpath cache to be used by PHP. This value should
  279. ; be increased on systems where PHP opens many files to reflect the quantity of
  280. ; the file operations performed.
  281. ; realpath_cache_size=16k
  282.  
  283. ; Duration of time, in seconds for which to cache realpath information for a given
  284. ; file or directory. For systems with rarely changing files, consider increasing this
  285. ; value.
  286. ; realpath_cache_ttl=120
  287.  
  288. ;
  289. ; Misc
  290. ;
  291. ; Decides whether PHP may expose the fact that it is installed on the server
  292. ; (e.g. by adding its signature to the Web server header).  It is no security
  293. ; threat in any way, but it makes it possible to determine whether you use PHP
  294. ; on your server or not.
  295. expose_php = On
  296.  
  297.  
  298. ;;;;;;;;;;;;;;;;;;;
  299. ; Resource Limits ;
  300. ;;;;;;;;;;;;;;;;;;;
  301.  
  302. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  303. max_input_time = 60    ; Maximum amount of time each script may spend parsing request data
  304. memory_limit = 16M      ; Maximum amount of memory a script may consume (16MB)
  305.  
  306.  
  307. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  308. ; Error handling and logging ;
  309. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  310.  
  311. ; error_reporting is a bit-field.  Or each number up to get desired error
  312. ; reporting level
  313. ; E_ALL             - All errors and warnings (doesn't include E_STRICT)
  314. ; E_ERROR           - fatal run-time errors
  315. ; E_RECOVERABLE_ERROR  - almost fatal run-time errors
  316. ; E_WARNING         - run-time warnings (non-fatal errors)
  317. ; E_PARSE           - compile-time parse errors
  318. ; E_NOTICE          - run-time notices (these are warnings which often result
  319. ;                     from a bug in your code, but it's possible that it was
  320. ;                     intentional (e.g., using an uninitialized variable and
  321. ;                     relying on the fact it's automatically initialized to an
  322. ;                     empty string)
  323. ; E_STRICT          - run-time notices, enable to have PHP suggest changes
  324. ;                     to your code which will ensure the best interoperability
  325. ;                     and forward compatibility of your code
  326. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  327. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  328. ;                     initial startup
  329. ; E_COMPILE_ERROR   - fatal compile-time errors
  330. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  331. ; E_USER_ERROR      - user-generated error message
  332. ; E_USER_WARNING    - user-generated warning message
  333. ; E_USER_NOTICE     - user-generated notice message
  334. ;
  335. ; Examples:
  336. ;
  337. ;   - Show all errors, except for notices and coding standards warnings
  338. ;
  339. ;error_reporting = E_ALL & ~E_NOTICE
  340. ;
  341. ;   - Show all errors, except for notices
  342. ;
  343. ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
  344. ;
  345. ;   - Show only errors
  346. ;
  347. ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
  348. ;
  349. ;   - Show all errors, except coding standards warnings
  350. ;
  351. error_reporting  =  E_ALL
  352.  
  353. ; Print out errors (as a part of the output).  For production web sites,
  354. ; you're strongly encouraged to turn this feature off, and use error logging
  355. ; instead (see below).  Keeping display_errors enabled on a production web site
  356. ; may reveal security information to end users, such as file paths on your Web
  357. ; server, your database schema or other information.
  358. display_errors = On
  359.  
  360. ; Even when display_errors is on, errors that occur during PHP's startup
  361. ; sequence are not displayed.  It's strongly recommended to keep
  362. ; display_startup_errors off, except for when debugging.
  363. display_startup_errors = Off
  364.  
  365. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  366. ; As stated above, you're strongly advised to use error logging in place of
  367. ; error displaying on production web sites.
  368. log_errors = On
  369.  
  370. ; Set maximum length of log_errors. In error_log information about the source is
  371. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  372. log_errors_max_len = 1024
  373.  
  374. ; Do not log repeated messages. Repeated errors must occur in same file on same
  375. ; line until ignore_repeated_source is set true.
  376. ignore_repeated_errors = Off
  377.  
  378. ; Ignore source of message when ignoring repeated messages. When this setting
  379. ; is On you will not log errors with repeated messages from different files or
  380. ; source lines.
  381. ignore_repeated_source = Off
  382.  
  383. ; If this parameter is set to Off, then memory leaks will not be shown (on
  384. ; stdout or in the log). This has only effect in a debug compile, and if
  385. ; error reporting includes E_WARNING in the allowed list
  386. report_memleaks = On
  387.  
  388. ;report_zend_debug = 0
  389.  
  390. ; Store the last error/warning message in $php_errormsg (boolean).
  391. track_errors = Off
  392.  
  393. ; Disable the inclusion of HTML tags in error messages.
  394. ; Note: Never use this feature for production boxes.
  395. ;html_errors = Off
  396.  
  397. ; If html_errors is set On PHP produces clickable error messages that direct
  398. ; to a page describing the error or function causing the error in detail.
  399. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  400. ; and change docref_root to the base URL of your local copy including the
  401. ; leading '/'. You must also specify the file extension being used including
  402. ; the dot.
  403. ; Note: Never use this feature for production boxes.
  404. ;docref_root = "/phpmanual/"
  405. ;docref_ext = .html
  406.  
  407. ; String to output before an error message.
  408. ;error_prepend_string = "<font color=ff0000>"
  409.  
  410. ; String to output after an error message.
  411. ;error_append_string = "</font>"
  412.  
  413. ; Log errors to specified file.
  414. ;error_log = filename
  415.  
  416. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  417. ;error_log = syslog
  418.  
  419.  
  420. ;;;;;;;;;;;;;;;;;
  421. ; Data Handling ;
  422. ;;;;;;;;;;;;;;;;;
  423. ;
  424. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  425.  
  426. ; The separator used in PHP generated URLs to separate arguments.
  427. ; Default is "&".
  428. ;arg_separator.output = "&"
  429.  
  430. ; List of separator(s) used by PHP to parse input URLs into variables.
  431. ; Default is "&".
  432. ; NOTE: Every character in this directive is considered as separator!
  433. ;arg_separator.input = ";&"
  434.  
  435. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  436. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  437. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  438. ; values override older values.
  439. variables_order = "GPCS"
  440.  
  441. ; Whether or not to register the EGPCS variables as global variables.  You may
  442. ; want to turn this off if you don't want to clutter your scripts' global scope
  443. ; with user data.  This makes most sense when coupled with track_vars - in which
  444. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  445. ; variables.
  446. ;
  447. ; You should do your best to write your scripts so that they do not require
  448. ; register_globals to be on;  Using form variables as globals can easily lead
  449. ; to possible security problems, if the code is not very well thought of.
  450. register_globals = Off
  451.  
  452. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  453. ; and friends.  If you're not using them, it's recommended to turn them off,
  454. ; for performance reasons.
  455. register_long_arrays = Off
  456.  
  457. ; This directive tells PHP whether to declare the argv&argc variables (that
  458. ; would contain the GET information).  If you don't use these variables, you
  459. ; should turn it off for increased performance.
  460. register_argc_argv = Off
  461.  
  462. ; When enabled, the SERVER and ENV variables are created when they're first
  463. ; used (Just In Time) instead of when the script starts. If these variables
  464. ; are not used within a script, having this directive on will result in a
  465. ; performance gain. The PHP directives register_globals, register_long_arrays,
  466. ; and register_argc_argv must be disabled for this directive to have any affect.
  467. auto_globals_jit = On
  468.  
  469. ; Maximum size of POST data that PHP will accept.
  470. post_max_size = 8M
  471.  
  472. ; Magic quotes
  473. ;
  474.  
  475. ; Magic quotes for incoming GET/POST/Cookie data.
  476. magic_quotes_gpc = Off
  477.  
  478. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  479. magic_quotes_runtime = Off
  480.  
  481. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  482. magic_quotes_sybase = Off
  483.  
  484. ; Automatically add files before or after any PHP document.
  485. auto_prepend_file =
  486. auto_append_file =
  487.  
  488. ; As of 4.0b4, PHP always outputs a character encoding by default in
  489. ; the Content-type: header.  To disable sending of the charset, simply
  490. ; set it to be empty.
  491. ;
  492. ; PHP's built-in default is text/html
  493. default_mimetype = "text/html"
  494. ;default_charset = "iso-8859-1"
  495.  
  496. ; Always populate the $HTTP_RAW_POST_DATA variable.
  497. ;always_populate_raw_post_data = On
  498.  
  499.  
  500. ;;;;;;;;;;;;;;;;;;;;;;;;;
  501. ; Paths and Directories ;
  502. ;;;;;;;;;;;;;;;;;;;;;;;;;
  503.  
  504. ; UNIX: "/path1:/path2"
  505. ;include_path = ".:/php5/includes"
  506. ;
  507. ; Windows: "\path1;\path2"
  508. include_path = ".;${path}\php5\pear\"
  509.  
  510. ; The root of the PHP pages, used only if nonempty.
  511. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  512. ; if you are running php as a CGI under any web server (other than IIS)
  513. ; see documentation for security issues.  The alternate is to use the
  514. ; cgi.force_redirect configuration below
  515. doc_root =
  516.  
  517. ; The directory under which PHP opens the script using /~username used only
  518. ; if nonempty.
  519. user_dir =
  520.  
  521. ; Directory in which the loadable extensions (modules) reside.
  522. extension_dir = "${path}\php5\ext\"
  523.  
  524. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  525. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  526. ; disabled on them.
  527. enable_dl = On
  528.  
  529. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  530. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  531. ; turn it off here AT YOUR OWN RISK
  532. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  533. ; cgi.force_redirect = 1
  534.  
  535. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  536. ; every request.
  537. ; cgi.nph = 1
  538.  
  539. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  540. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  541. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  542. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  543. ; cgi.redirect_status_env = ;
  544.  
  545. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  546. ; security tokens of the calling client.  This allows IIS to define the
  547. ; security context that the request runs under.  mod_fastcgi under Apache
  548. ; does not currently support this feature (03/17/2002)
  549. ; Set to 1 if running under IIS.  Default is zero.
  550. ; fastcgi.impersonate = 1;
  551.  
  552. ; Disable logging through FastCGI connection
  553. ; fastcgi.log = 0
  554.  
  555. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  556. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  557. ; is supported by Apache. When this option is set to 1 PHP will send
  558. ; RFC2616 compliant header.
  559. ; Default is zero.
  560. ;cgi.rfc2616_headers = 0
  561.  
  562.  
  563. ;;;;;;;;;;;;;;;;
  564. ; File Uploads ;
  565. ;;;;;;;;;;;;;;;;
  566.  
  567. ; Whether to allow HTTP file uploads.
  568. file_uploads = On
  569.  
  570. ; Temporary directory for HTTP uploaded files (will use system default if not
  571. ; specified).
  572. upload_tmp_dir = "${path}\tmp\"
  573.  
  574. ; Maximum allowed size for uploaded files.
  575. upload_max_filesize = 2M
  576.  
  577.  
  578. ;;;;;;;;;;;;;;;;;;
  579. ; Fopen wrappers ;
  580. ;;;;;;;;;;;;;;;;;;
  581.  
  582. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  583. allow_url_fopen = On
  584.  
  585. ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
  586. allow_url_include = Off
  587.  
  588. ; Define the anonymous ftp password (your email address)
  589. ;from="john@doe.com"
  590.  
  591. ; Define the User-Agent string
  592. ; user_agent="PHP"
  593.  
  594. ; Default timeout for socket based streams (seconds)
  595. default_socket_timeout = 60
  596.  
  597. ; If your scripts have to deal with files from Macintosh systems,
  598. ; or you are running on a Mac and need to deal with files from
  599. ; unix or win32 systems, setting this flag will cause PHP to
  600. ; automatically detect the EOL character in those files so that
  601. ; fgets() and file() will work regardless of the source of the file.
  602. ; auto_detect_line_endings = Off
  603.  
  604.  
  605. ;;;;;;;;;;;;;;;;;;;
  606. ; Module Settings ;
  607. ;;;;;;;;;;;;;;;;;;;
  608.  
  609. [Date]
  610. ; Defines the default timezone used by the date functions
  611. ;date.timezone =
  612.  
  613. ;date.default_latitude = 31.7667
  614. ;date.default_longitude = 35.2333
  615.  
  616. ;date.sunrise_zenith = 90.583333
  617. ;date.sunset_zenith = 90.583333
  618.  
  619. [filter]
  620. ;filter.default = unsafe_raw
  621. ;filter.default_flags =
  622.  
  623. [iconv]
  624. ;iconv.input_encoding = ISO-8859-1
  625. ;iconv.internal_encoding = ISO-8859-1
  626. ;iconv.output_encoding = ISO-8859-1
  627.  
  628. [sqlite]
  629. ;sqlite.assoc_case = 0
  630.  
  631. [xmlrpc]
  632. ;xmlrpc_error_number = 0
  633. ;xmlrpc_errors = 0
  634.  
  635. [Pcre]
  636. ;pcre.recursion_limit=100000
  637. ;pcre.backtrack_limit=100000
  638.  
  639. [Syslog]
  640. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  641. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  642. ; runtime, you can define these variables by calling define_syslog_variables().
  643. define_syslog_variables  = Off
  644.  
  645. [mail function]
  646. ; For Win32 only.
  647. SMTP = localhost
  648. smtp_port = 25
  649.  
  650. ; For Win32 only.
  651. ;sendmail_from = me@example.com
  652.  
  653. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  654. ;sendmail_path =
  655.  
  656. ; Force the addition of the specified parameters to be passed as extra parameters
  657. ; to the sendmail binary. These parameters will always replace the value of
  658. ; the 5th parameter to mail(), even in safe mode.
  659. ;mail.force_extra_parameters =
  660.  
  661. [SQL]
  662. sql.safe_mode = Off
  663.  
  664. [ODBC]
  665. ;odbc.default_db    =  Not yet implemented
  666. ;odbc.default_user  =  Not yet implemented
  667. ;odbc.default_pw    =  Not yet implemented
  668.  
  669. ; Allow or prevent persistent links.
  670. odbc.allow_persistent = On
  671.  
  672. ; Check that a connection is still valid before reuse.
  673. odbc.check_persistent = On
  674.  
  675. ; Maximum number of persistent links.  -1 means no limit.
  676. odbc.max_persistent = -1
  677.  
  678. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  679. odbc.max_links = -1
  680.  
  681. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  682. ; passthru.
  683. odbc.defaultlrl = 4096
  684.  
  685. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  686. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  687. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  688. odbc.defaultbinmode = 1
  689.  
  690. [MySQL]
  691. ; Allow or prevent persistent links.
  692. mysql.allow_persistent = On
  693.  
  694. ; Maximum number of persistent links.  -1 means no limit.
  695. mysql.max_persistent = -1
  696.  
  697. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  698. mysql.max_links = -1
  699.  
  700. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  701. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  702. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  703. ; at MYSQL_PORT.
  704. mysql.default_port =
  705.  
  706. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  707. ; MySQL defaults.
  708. mysql.default_socket =
  709.  
  710. ; Default host for mysql_connect() (doesn't apply in safe mode).
  711. mysql.default_host =
  712.  
  713. ; Default user for mysql_connect() (doesn't apply in safe mode).
  714. mysql.default_user =
  715.  
  716. ; Default password for mysql_connect() (doesn't apply in safe mode).
  717. ; Note that this is generally a *bad* idea to store passwords in this file.
  718. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  719. ; and reveal this password!  And of course, any users with read access to this
  720. ; file will be able to reveal the password as well.
  721. mysql.default_password =
  722.  
  723. ; Maximum time (in seconds) for connect timeout. -1 means no limit
  724. mysql.connect_timeout = 60
  725.  
  726. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  727. ; SQL-Errors will be displayed.
  728. mysql.trace_mode = Off
  729.  
  730. [MySQLi]
  731.  
  732. ; Maximum number of links.  -1 means no limit.
  733. mysqli.max_links = -1
  734.  
  735. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  736. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  737. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  738. ; at MYSQL_PORT.
  739. mysqli.default_port = 3306
  740.  
  741. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  742. ; MySQL defaults.
  743. mysqli.default_socket =
  744.  
  745. ; Default host for mysql_connect() (doesn't apply in safe mode).
  746. mysqli.default_host =
  747.  
  748. ; Default user for mysql_connect() (doesn't apply in safe mode).
  749. mysqli.default_user =
  750.  
  751. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  752. ; Note that this is generally a *bad* idea to store passwords in this file.
  753. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
  754. ; and reveal this password!  And of course, any users with read access to this
  755. ; file will be able to reveal the password as well.
  756. mysqli.default_pw =
  757.  
  758. ; Allow or prevent reconnect
  759. mysqli.reconnect = Off
  760.  
  761. [mSQL]
  762. ; Allow or prevent persistent links.
  763. msql.allow_persistent = On
  764.  
  765. ; Maximum number of persistent links.  -1 means no limit.
  766. msql.max_persistent = -1
  767.  
  768. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  769. msql.max_links = -1
  770.  
  771. [PostgresSQL]
  772. ; Allow or prevent persistent links.
  773. pgsql.allow_persistent = On
  774.  
  775. ; Detect broken persistent links always with pg_pconnect().
  776. ; Auto reset feature requires a little overheads.
  777. pgsql.auto_reset_persistent = Off
  778.  
  779. ; Maximum number of persistent links.  -1 means no limit.
  780. pgsql.max_persistent = -1
  781.  
  782. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  783. pgsql.max_links = -1
  784.  
  785. ; Ignore PostgreSQL backends Notice message or not.
  786. ; Notice message logging require a little overheads.
  787. pgsql.ignore_notice = 0
  788.  
  789. ; Log PostgreSQL backends Noitce message or not.
  790. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  791. pgsql.log_notice = 0
  792.  
  793. [Sybase]
  794. ; Allow or prevent persistent links.
  795. sybase.allow_persistent = On
  796.  
  797. ; Maximum number of persistent links.  -1 means no limit.
  798. sybase.max_persistent = -1
  799.  
  800. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  801. sybase.max_links = -1
  802.  
  803. ;sybase.interface_file = "/usr/sybase/interfaces"
  804.  
  805. ; Minimum error severity to display.
  806. sybase.min_error_severity = 10
  807.  
  808. ; Minimum message severity to display.
  809. sybase.min_message_severity = 10
  810.  
  811. ; Compatibility mode with old versions of PHP 3.0.
  812. ; If on, this will cause PHP to automatically assign types to results according
  813. ; to their Sybase type, instead of treating them all as strings.  This
  814. ; compatibility mode will probably not stay around forever, so try applying
  815. ; whatever necessary changes to your code, and turn it off.
  816. sybase.compatability_mode = Off
  817.  
  818. [Sybase-CT]
  819. ; Allow or prevent persistent links.
  820. sybct.allow_persistent = On
  821.  
  822. ; Maximum number of persistent links.  -1 means no limit.
  823. sybct.max_persistent = -1
  824.  
  825. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  826. sybct.max_links = -1
  827.  
  828. ; Minimum server message severity to display.
  829. sybct.min_server_severity = 10
  830.  
  831. ; Minimum client message severity to display.
  832. sybct.min_client_severity = 10
  833.  
  834. [bcmath]
  835. ; Number of decimal digits for all bcmath functions.
  836. bcmath.scale = 0
  837.  
  838. [browscap]
  839. ;browscap = extra/browscap.ini
  840.  
  841. [Informix]
  842. ; Default host for ifx_connect() (doesn't apply in safe mode).
  843. ifx.default_host =
  844.  
  845. ; Default user for ifx_connect() (doesn't apply in safe mode).
  846. ifx.default_user =
  847.  
  848. ; Default password for ifx_connect() (doesn't apply in safe mode).
  849. ifx.default_password =
  850.  
  851. ; Allow or prevent persistent links.
  852. ifx.allow_persistent = On
  853.  
  854. ; Maximum number of persistent links.  -1 means no limit.
  855. ifx.max_persistent = -1
  856.  
  857. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  858. ifx.max_links = -1
  859.  
  860. ; If on, select statements return the contents of a text blob instead of its id.
  861. ifx.textasvarchar = 0
  862.  
  863. ; If on, select statements return the contents of a byte blob instead of its id.
  864. ifx.byteasvarchar = 0
  865.  
  866. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  867. ; life of Informix SE users.
  868. ifx.charasvarchar = 0
  869.  
  870. ; If on, the contents of text and byte blobs are dumped to a file instead of
  871. ; keeping them in memory.
  872. ifx.blobinfile = 0
  873.  
  874. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  875. ; NULL's are returned as string 'NULL'.
  876. ifx.nullformat = 0
  877.  
  878. [Session]
  879. ; Handler used to store/retrieve data.
  880. session.save_handler = files
  881.  
  882. ; Argument passed to save_handler.  In the case of files, this is the path
  883. ; where data files are stored. Note: Windows users have to change this
  884. ; variable in order to use PHP's session functions.
  885. ;
  886. ; As of PHP 4.0.1, you can define the path as:
  887. ;
  888. ;     session.save_path = "N;/path"
  889. ;
  890. ; where N is an integer.  Instead of storing all the session files in
  891. ; /path, what this will do is use subdirectories N-levels deep, and
  892. ; store the session data in those directories.  This is useful if you
  893. ; or your OS have problems with lots of files in one directory, and is
  894. ; a more efficient layout for servers that handle lots of sessions.
  895. ;
  896. ; NOTE 1: PHP will not create this directory structure automatically.
  897. ;         You can use the script in the ext/session dir for that purpose.
  898. ; NOTE 2: See the section on garbage collection below if you choose to
  899. ;         use subdirectories for session storage
  900. ;
  901. ; The file storage module creates files using mode 600 by default.
  902. ; You can change that by using
  903. ;
  904. ;     session.save_path = "N;MODE;/path"
  905. ;
  906. ; where MODE is the octal representation of the mode. Note that this
  907. ; does not overwrite the process's umask.
  908. session.save_path = "${path}\tmp\"
  909.  
  910. ; Whether to use cookies.
  911. session.use_cookies = 1
  912.  
  913. ;session.cookie_secure =
  914.  
  915. ; This option enables administrators to make their users invulnerable to
  916. ; attacks which involve passing session ids in URLs; defaults to 0.
  917. ; session.use_only_cookies = 1
  918.  
  919. ; Name of the session (used as cookie name).
  920. session.name = PHPSESSID
  921.  
  922. ; Initialize session on request startup.
  923. session.auto_start = 0
  924.  
  925. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  926. session.cookie_lifetime = 0
  927.  
  928. ; The path for which the cookie is valid.
  929. session.cookie_path = /
  930.  
  931. ; The domain for which the cookie is valid.
  932. session.cookie_domain =
  933.  
  934. ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
  935. session.cookie_httponly = 
  936.  
  937. ; Handler used to serialize data.  php is the standard serializer of PHP.
  938. session.serialize_handler = php
  939.  
  940. ; Define the probability that the 'garbage collection' process is started
  941. ; on every session initialization.
  942. ; The probability is calculated by using gc_probability/gc_divisor,
  943. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  944. ; on each request.
  945.  
  946. session.gc_probability = 1
  947. session.gc_divisor     = 1000
  948.  
  949. ; After this number of seconds, stored data will be seen as 'garbage' and
  950. ; cleaned up by the garbage collection process.
  951. session.gc_maxlifetime = 1440
  952.  
  953. ; NOTE: If you are using the subdirectory option for storing session files
  954. ;       (see session.save_path above), then garbage collection does *not*
  955. ;       happen automatically.  You will need to do your own garbage
  956. ;       collection through a shell script, cron entry, or some other method.
  957. ;       For example, the following script would is the equivalent of
  958. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  959. ;          cd /path/to/sessions; find -cmin +24 | xargs rm
  960.  
  961. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  962. ; to initialize a session variable in the global scope, albeit register_globals
  963. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  964. ; You can disable the feature and the warning separately. At this time,
  965. ; the warning is only displayed, if bug_compat_42 is enabled.
  966.  
  967. session.bug_compat_42 = 0
  968. session.bug_compat_warn = 1
  969.  
  970. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  971. ; HTTP_REFERER has to contain this substring for the session to be
  972. ; considered as valid.
  973. session.referer_check =
  974.  
  975. ; How many bytes to read from the file.
  976. session.entropy_length = 0
  977.  
  978. ; Specified here to create the session id.
  979. session.entropy_file =
  980.  
  981. ;session.entropy_length = 16
  982.  
  983. ;session.entropy_file = /dev/urandom
  984.  
  985. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  986. ; or leave this empty to avoid sending anti-caching headers.
  987. session.cache_limiter = nocache
  988.  
  989. ; Document expires after n minutes.
  990. session.cache_expire = 180
  991.  
  992. ; trans sid support is disabled by default.
  993. ; Use of trans sid may risk your users security.
  994. ; Use this option with caution.
  995. ; - User may send URL contains active session ID
  996. ;   to other person via. email/irc/etc.
  997. ; - URL that contains active session ID may be stored
  998. ;   in publically accessible computer.
  999. ; - User may access your site with the same session ID
  1000. ;   always using URL stored in browser's history or bookmarks.
  1001. session.use_trans_sid = 0
  1002.  
  1003. ; Select a hash function
  1004. ; 0: MD5   (128 bits)
  1005. ; 1: SHA-1 (160 bits)
  1006. session.hash_function = 0
  1007.  
  1008. ; Define how many bits are stored in each character when converting
  1009. ; the binary hash data to something readable.
  1010. ;
  1011. ; 4 bits: 0-9, a-f
  1012. ; 5 bits: 0-9, a-v
  1013. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  1014. session.hash_bits_per_character = 5
  1015.  
  1016. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  1017. ; form/fieldset are special; if you include them here, the rewriter will
  1018. ; add a hidden <input> field with the info which is otherwise appended
  1019. ; to URLs.  If you want XHTML conformity, remove the form entry.
  1020. ; Note that all valid entries require a "=", even if no value follows.
  1021. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  1022.  
  1023. [MSSQL]
  1024. ; Allow or prevent persistent links.
  1025. mssql.allow_persistent = On
  1026.  
  1027. ; Maximum number of persistent links.  -1 means no limit.
  1028. mssql.max_persistent = -1
  1029.  
  1030. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  1031. mssql.max_links = -1
  1032.  
  1033. ; Minimum error severity to display.
  1034. mssql.min_error_severity = 10
  1035.  
  1036. ; Minimum message severity to display.
  1037. mssql.min_message_severity = 10
  1038.  
  1039. ; Compatibility mode with old versions of PHP 3.0.
  1040. mssql.compatability_mode = Off
  1041.  
  1042. ; Connect timeout
  1043. ;mssql.connect_timeout = 5
  1044.  
  1045. ; Query timeout
  1046. ;mssql.timeout = 60
  1047.  
  1048. ; Valid range 0 - 2147483647.  Default = 4096.
  1049. ;mssql.textlimit = 4096
  1050.  
  1051. ; Valid range 0 - 2147483647.  Default = 4096.
  1052. ;mssql.textsize = 4096
  1053.  
  1054. ; Limits the number of records in each batch.  0 = all records in one batch.
  1055. ;mssql.batchsize = 0
  1056.  
  1057. ; Specify how datetime and datetim4 columns are returned
  1058. ; On => Returns data converted to SQL server settings
  1059. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1060. ;mssql.datetimeconvert = On
  1061.  
  1062. ; Use NT authentication when connecting to the server
  1063. mssql.secure_connection = Off
  1064.  
  1065. ; Specify max number of processes. -1 = library default
  1066. ; msdlib defaults to 25
  1067. ; FreeTDS defaults to 4096
  1068. ;mssql.max_procs = -1
  1069.  
  1070. ; Specify client character set. 
  1071. ; If empty or not set the client charset from freetds.comf is used
  1072. ; This is only used when compiled with FreeTDS
  1073. ;mssql.charset = "ISO-8859-1"
  1074.  
  1075. [Assertion]
  1076. ; Assert(expr); active by default.
  1077. ;assert.active = On
  1078.  
  1079. ; Issue a PHP warning for each failed assertion.
  1080. ;assert.warning = On
  1081.  
  1082. ; Don't bail out by default.
  1083. ;assert.bail = Off
  1084.  
  1085. ; User-function to be called if an assertion fails.
  1086. ;assert.callback = 0
  1087.  
  1088. ; Eval the expression with current error_reporting().  Set to true if you want
  1089. ; error_reporting(0) around the eval().
  1090. ;assert.quiet_eval = 0
  1091.  
  1092. [COM]
  1093. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1094. ;com.typelib_file =
  1095. ; allow Distributed-COM calls
  1096. ;com.allow_dcom = true
  1097. ; autoregister constants of a components typlib on com_load()
  1098. ;com.autoregister_typelib = true
  1099. ; register constants casesensitive
  1100. ;com.autoregister_casesensitive = false
  1101. ; show warnings on duplicate constant registrations
  1102. ;com.autoregister_verbose = true
  1103.  
  1104. [mbstring]
  1105. ; language for internal character representation.
  1106. ;mbstring.language = Japanese
  1107.  
  1108. ; internal/script encoding.
  1109. ; Some encoding cannot work as internal encoding.
  1110. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1111. ;mbstring.internal_encoding = EUC-JP
  1112.  
  1113. ; http input encoding.
  1114. ;mbstring.http_input = auto
  1115.  
  1116. ; http output encoding. mb_output_handler must be
  1117. ; registered as output buffer to function
  1118. ;mbstring.http_output = SJIS
  1119.  
  1120. ; enable automatic encoding translation according to
  1121. ; mbstring.internal_encoding setting. Input chars are
  1122. ; converted to internal encoding by setting this to On.
  1123. ; Note: Do _not_ use automatic encoding translation for
  1124. ;       portable libs/applications.
  1125. ;mbstring.encoding_translation = Off
  1126.  
  1127. ; automatic encoding detection order.
  1128. ; auto means
  1129. ;mbstring.detect_order = auto
  1130.  
  1131. ; substitute_character used when character cannot be converted
  1132. ; one from another
  1133. ;mbstring.substitute_character = none;
  1134.  
  1135. ; overload(replace) single byte functions by mbstring functions.
  1136. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1137. ; etc. Possible values are 0,1,2,4 or combination of them.
  1138. ; For example, 7 for overload everything.
  1139. ; 0: No overload
  1140. ; 1: Overload mail() function
  1141. ; 2: Overload str*() functions
  1142. ; 4: Overload ereg*() functions
  1143. ;mbstring.func_overload = 0
  1144.  
  1145. ; enable strict encoding detection.
  1146. ;mbstring.strict_encoding = Off
  1147.  
  1148. [FrontBase]
  1149. ;fbsql.allow_persistent = On
  1150. ;fbsql.autocommit = On
  1151. ;fbsql.show_timestamp_decimals = Off
  1152. ;fbsql.default_database =
  1153. ;fbsql.default_database_password =
  1154. ;fbsql.default_host =
  1155. ;fbsql.default_password =
  1156. ;fbsql.default_user = "_SYSTEM"
  1157. ;fbsql.generate_warnings = Off
  1158. ;fbsql.max_connections = 128
  1159. ;fbsql.max_links = 128
  1160. ;fbsql.max_persistent = -1
  1161. ;fbsql.max_results = 128
  1162.  
  1163. [gd]
  1164. ; Tell the jpeg decode to libjpeg warnings and try to create
  1165. ; a gd image. The warning will then be displayed as notices
  1166. ; disabled by default
  1167. ;gd.jpeg_ignore_warning = 0
  1168.  
  1169. [exif]
  1170. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1171. ; With mbstring support this will automatically be converted into the encoding
  1172. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1173. ; is used. For the decode settings you can distinguish between motorola and
  1174. ; intel byte order. A decode setting cannot be empty.
  1175. ;exif.encode_unicode = ISO-8859-15
  1176. ;exif.decode_unicode_motorola = UCS-2BE
  1177. ;exif.decode_unicode_intel    = UCS-2LE
  1178. ;exif.encode_jis =
  1179. ;exif.decode_jis_motorola = JIS
  1180. ;exif.decode_jis_intel    = JIS
  1181.  
  1182. [Tidy]
  1183. ; The path to a default tidy configuration file to use when using tidy
  1184. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1185.  
  1186. ; Should tidy clean and repair output automatically?
  1187. ; WARNING: Do not use this option if you are generating non-html content
  1188. ; such as dynamic images
  1189. tidy.clean_output = Off
  1190.  
  1191. [soap]
  1192. ; Enables or disables WSDL caching feature.
  1193. soap.wsdl_cache_enabled=1
  1194. ; Sets the directory name where SOAP extension will put cache files.
  1195. soap.wsdl_cache_dir="/tmp"
  1196. ; (time to live) Sets the number of second while cached file will be used 
  1197. ; instead of original one.
  1198. soap.wsdl_cache_ttl=86400
  1199.  
  1200. ; Local Variables:
  1201. ; tab-width: 4
  1202. ; End:
  1203.  
  1204.  
  1205. ;;;;;;;;;;;;;;;;;;;;;;
  1206. ; Dynamic Extensions ;
  1207. ;;;;;;;;;;;;;;;;;;;;;;
  1208. ;
  1209. ; If you wish to have an extension loaded automatically, use the following
  1210. ; syntax:
  1211. ;
  1212. ;   extension=modulename.extension
  1213. ;
  1214. ; For example, on Windows:
  1215. ;
  1216. ;   extension=msql.dll
  1217. ;
  1218. ; ... or under UNIX:
  1219. ;
  1220. ;   extension=msql.so
  1221. ;
  1222. ; Note that it should be the name of the module only; no directory information
  1223. ; needs to go here.  Specify the location of the extension with the
  1224. ; extension_dir directive above.
  1225.  
  1226.  
  1227. ; Windows Extensions
  1228. ; Note that ODBC support is built in, so no dll is needed for it.
  1229. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
  1230. ; extension folders as well as the separate PECL DLL download (PHP 5).
  1231. ; Be sure to appropriately set the extension_dir directive.
  1232. ;PHPExt
  1233. ;extension=php5activescript.dll
  1234. ;extension=php5servlet.dll
  1235. ;extension=php_apd.dll
  1236. ;extension=php_bcompiler.dll
  1237. ;extension=php_bitset.dll
  1238. ;extension=php_blenc.dll
  1239. ;extension=php_bz2.dll
  1240. ;extension=php_bz2_filter.dll
  1241. ;extension=php_classkit.dll
  1242. ;extension=php_cpdf.dll
  1243. ;extension=php_crack.dll
  1244. ;extension=php_curl.dll
  1245. ;extension=php_cvsclient.dll
  1246. ;extension=php_db.dll
  1247. ;extension=php_dba.dll
  1248. ;extension=php_dbase.dll
  1249. ;extension=php_dbx.dll
  1250. ;extension=php_dio.dll
  1251. ;extension=php_docblock.dll
  1252. ;extension=php_domxml.dll
  1253. ;extension=php_event.dll
  1254. ;extension=php_exif.dll
  1255. ;extension=php_fdf.dll
  1256. ;extension=php_fileinfo.dll
  1257. ;extension=php_filepro.dll
  1258. ;extension=php_fribidi.dll
  1259. extension=php_gd2.dll
  1260. ;extension=php_gettext.dll
  1261. ;extension=php_gmp.dll
  1262. ;extension=php_gopher.dll
  1263. ;extension=php_http.dll
  1264. ;extension=php_hyperwave.dll
  1265. ;extension=php_ibm_db2.dll
  1266. ;extension=php_id3.dll
  1267. ;extension=php_ifx.dll
  1268. ;extension=php_iisfunc.dll
  1269. ;extension=php_imagick.dll
  1270. ;extension=php_imap.dll
  1271. ;extension=php_ingres.dll
  1272. ;extension=php_interbase.dll
  1273. ;extension=php_java.dll
  1274. ;extension=php_ldap.dll
  1275. ;extension=php_lzf.dll
  1276. ;extension=php_mailparse.dll
  1277. extension=php_mbstring.dll
  1278. ;extension=php_mcrypt.dll
  1279. ;extension=php_mcrypt_filter.dll
  1280. ;extension=php_memcache.dll
  1281. ;extension=php_mhash.dll
  1282. ;extension=php_mime_magic.dll
  1283. ;extension=php_ming.dll
  1284. ;extension=php_msql.dll
  1285. ;extension=php_mssql.dll
  1286. extension=php_mysql.dll
  1287. extension=php_mysqli.dll
  1288. ;extension=php_netools.dll
  1289. ;extension=php_ntuser.dll
  1290. ;extension=php_oci8.dll
  1291. ;extension=php_oggvorbis.dll
  1292. ;extension=php_openssl.dll
  1293. ;extension=php_operator.dll
  1294. ;extension=php_oracle.dll
  1295. ;extension=php_parsekit.dll
  1296. ;extension=php_pdf.dll
  1297. extension=php_pdo.dll
  1298. ;extension=php_pdo_firebird.dll
  1299. ;extension=php_pdo_mssql.dll
  1300. ;extension=php_pdo_mysql.dll
  1301. ;extension=php_pdo_oci.dll
  1302. ;extension=php_pdo_oci8.dll
  1303. ;extension=php_pdo_odbc.dll
  1304. ;extension=php_pdo_pgsql.dll
  1305. extension=php_pdo_sqlite.dll
  1306. ;extension=php_pgsql.dll
  1307. ;extension=php_phar.dll
  1308. ;extension=php_phpdoc.dll
  1309. ;extension=php_pop3.dll
  1310. ;extension=php_printer.dll
  1311. ;extension=php_pspell.dll
  1312. ;extension=php_radius.dll
  1313. ;extension=php_rar.dll
  1314. ;extension=php_runkit.dll
  1315. ;extension=php_sdo.dll
  1316. ;extension=php_shmop.dll
  1317. ;extension=php_smtp.dll
  1318. ;extension=php_snmp.dll
  1319. ;extension=php_soap.dll
  1320. ;extension=php_sockets.dll
  1321. ;extension=php_sqlite.dll
  1322. ;extension=php_ssh2.dll
  1323. ;extension=php_stats.dll
  1324. ;extension=php_stem.dll
  1325. ;extension=php_svn.dll
  1326. ;extension=php_swish.dll
  1327. ;extension=php_sybase_ct.dll
  1328. ;extension=php_threads.dll
  1329. ;extension=php_tidy.dll
  1330. ;extension=php_timezonedb.dll
  1331. ;extension=php_translit.dll
  1332. ;extension=php_win32ps.dll
  1333. ;extension=php_win32scheduler.dll
  1334. ;extension=php_win32service.dll
  1335. ;extension=php_win32std.dll
  1336. ;extension=php_xmlrpc.dll
  1337. ;extension=php_xsl.dll
  1338. ;extension=php_yaz.dll
  1339. ;extension=php_zip.dll
  1340. ;extension=php_zlib_filter.dll
  1341. ;/PHPExt